Initializes a new instance of the 
ImGearARTFreeLine class object.
Syntax
            
            
            
            
            'Declaration
 
Public Function New( _
   ByVal () As ImGearPoint, _
   ByVal  As IImGearRGBQuad, _
   ByVal  As Integer, _
   ByVal  As Boolean, _
   ByVal  As Boolean _
)
             
        
            
            'Usage
 
Dim points() As ImGearPoint
Dim color As IImGearRGBQuad
Dim width As Integer
Dim isHighlighted As Boolean
Dim isClosed As Boolean
 
Dim instance As New ImGearARTFreeLine(points, color, width, isHighlighted, isClosed)
             
        
            
            public ImGearARTFreeLine( 
   ImGearPoint[] ,
   IImGearRGBQuad ,
   int ,
   bool ,
   bool 
)
             
        
            
            public: ImGearARTFreeLine( 
   ImGearPoint[]* ,
   IImGearRGBQuad* ,
   int ,
   bool ,
   bool 
)
             
        
            
        
             
        
            Parameters
- points
- The mark's points.
- color
- Color of the mark.
- width
- Width of the line.
- isHighlighted
- Specifies whether the mark is highlighted or not.
- isClosed
- Specifies whether the mark is closed or not.
 
            
            
            
            
            
            
            
            
            
            
            
            See Also